Tables [dbo].[RecurringDonationExpectedPaymentSetStatusRef]
Properties
PropertyValue
Created2:09:59 PM Thursday, March 18, 2010
Last Modified11:40:07 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_RecurringDonationExpectedPaymentSetStatusRef: RecurringDonationExpectedPaymentSetStatusCodeRecurringDonationExpectedPaymentSetStatusCodesmallint2
No
RecurringDonationExpectedPaymentSetStatusNamenvarchar(40)80
No
RecurringDonationExpectedPaymentSetStatusDescnvarchar(50)100
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_RecurringDonationExpectedPaymentSetStatusRef: RecurringDonationExpectedPaymentSetStatusCodePK_RecurringDonationExpectedPaymentSetStatusRefRecurringDonationExpectedPaymentSetStatusCode
Yes
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[RecurringDonationExpectedPaymentSetStatusRef]
(
[RecurringDonationExpectedPaymentSetStatusCode] [smallint] NOT NULL,
[RecurringDonationExpectedPaymentSetStatusName] [nvarchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[RecurringDonationExpectedPaymentSetStatusDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[RecurringDonationExpectedPaymentSetStatusRef] ADD CONSTRAINT [PK_RecurringDonationExpectedPaymentSetStatusRef] PRIMARY KEY CLUSTERED ([RecurringDonationExpectedPaymentSetStatusCode]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT SELECT ON  [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT INSERT ON  [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT DELETE ON  [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT UPDATE ON  [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GO
Uses
Used By